Skip to content

Add draft-16 moq-rs test client for interop testing#35

Merged
englishm-cloudflare merged 1 commit intomainfrom
add-draft-16-test-client
Feb 11, 2026
Merged

Add draft-16 moq-rs test client for interop testing#35
englishm-cloudflare merged 1 commit intomainfrom
add-draft-16-test-client

Conversation

@englishm-cloudflare
Copy link
Copy Markdown
Collaborator

Summary

  • Adds moq-rs-draft-16 entry to implementations.json pointing to the draft-16 interop branch on englishm-cloudflare/moq-rs-1
  • Adds --repo flag to builds/moq-rs/build.sh to support building from forks/alternate repositories

Build and test

# Build the test client
./builds/moq-rs/build.sh \
  --repo https://github.com/englishm-cloudflare/moq-rs-1 \
  --ref me/draft-16-interop \
  --target client

# Build quiche-moq relay (if not already built)
./builds/quiche-moq/build.sh --target relay

# Run interop tests
docker run --rm -d --name quiche-relay \
  -v $(pwd)/certs:/certs:ro -p 4443:4443/udp \
  -e MOQT_ROLE=relay -e MOQT_PORT=4443 \
  quiche-moq-relay:latest

docker run --rm --link quiche-relay:relay \
  -e RELAY_URL=https://relay:4443 \
  -e TLS_DISABLE_VERIFY=1 \
  moq-test-client:latest

docker stop quiche-relay

Test results

6/6 tests pass against quiche-moq relay (Google QUICHE 07d3bf2e7):

Test Result
setup-only PASS
announce-only PASS
subscribe-error PASS
announce-subscribe PASS
subscribe-before-announce PASS
publish-namespace-done PASS

Notes

  • The moq-rs draft-16 branch is WIP, based on cloudflare/moq-rs#131 with additional interop fixes
  • The --repo flag auto-detects when the clone URL has changed and re-clones as needed
  • Known remaining draft-16 compliance issues are documented in the moq-rs source (TrackStatusOk vs NamespaceDone, missing Namespace message, stubbed REQUEST_OK handling)

Add moq-rs-draft-16 entry to implementations.json pointing to the
draft-16 interop branch. This enables others to build and run the
moq-rs test client against draft-16 relays (e.g. quiche-moq).

Also adds --repo flag to the moq-rs build script to support building
from forks/alternate repositories.

Build and test:
  ./builds/moq-rs/build.sh --repo https://github.com/englishm-cloudflare/moq-rs-1 \
    --ref me/draft-16-interop --target client

Currently passes 6/6 interop tests against quiche-moq relay.
@englishm-cloudflare englishm-cloudflare merged commit bed39b6 into main Feb 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants